home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / FAQs / netfaqs / C++libs-faq < prev    next >
Text File  |  1994-08-01  |  79KB  |  2,204 lines

  1.  
  2. Newsgroups: comp.lang.c++,comp.answers,news.answers
  3. From: nikki@trmphrst.demon.co.uk (Nikki Locke)
  4. Subject: Available C++ libraries FAQ
  5. Reply-To: cpplibs@trmphrst.demon.co.uk
  6. Summary: Contains a list of available C++ libraries, both PD and commercial.
  7. X-Mailer: cppnews news/mail for DOS
  8. Organization: Trumphurst Ltd.
  9. Expires: Sun, 13 Feb 1994 00:00:00 GMT
  10. Supersedes: <Dec93c++libsFAQ@trmphrst.demon.co.uk>
  11. Approved: news-answers-request@MIT.Edu
  12. Lines: 2187
  13. Date: Sat, 8 Jan 1994 16:31:49 +0000
  14. Sender: usenet@demon.co.uk
  15. Xref: bloom-beacon.mit.edu comp.lang.c++:33204 comp.answers:3331 news.answers:13874
  16.  
  17. Archive-name: C++-faq/libraries
  18. Comp-lang-c++-archive-name: C++-faq/libraries
  19. Last-modified: 1994/01/08
  20.  
  21. Here is the third draft of a list of available C++ libraries I am 
  22. compiling. I intend to post this monthly (unless there are any 
  23. complaints). 
  24.  
  25. It is also submited to news.answers, and is available for public ftp
  26. (along with all the other Usenet FAQ lists) at rtfm.mit.edu (18.70.0.224), 
  27. in pub/usenet-by-group/comp.lang.c++/libraries.
  28.  
  29. Rtfm.mit.edu also has a mail server - send a mail message containing 
  30. "usenet-by-group/comp.answers/C++-faq/libraries" to mail-server@rtfm.mit.edu.
  31. If you want to find out more about the mail server, send a message to it
  32. containing "help". 
  33.  
  34. Marshall Cline's C++ FAQ is also available from rtfm - the files are
  35. called _posting_#1_4, _posting_#2_4, _posting_#3_4 and _posting_#4_4, and
  36. they are in the same directory. 
  37.  
  38. I have not included a credits list, because it would be nearly as large as
  39. the rest of the file! Many thanks to all those who contributed, and I 
  40. hope you won't be offended that I haven't mentioned you. One recent 
  41. contribution of note is a C++ matrix class listing posted to the net by 
  42. Keith (kbriggs@maths.adelaide.edu.au).
  43.  
  44. Entries are in the order I received them, i.e. totally random. Some future
  45. version might have the entries in alphabetical order, but don't hold your 
  46. breath :-)
  47.  
  48. If your library isn't mentioned, or you wish to update your entry in this 
  49. list, feel free to mail me the new entry.  Please note that entries will 
  50. be restricted to a couple of paragraphs - if you send me a 100k text file 
  51. giving minute details, I will have to summarise it. It is much easier for 
  52. me if you just send me an entry which is the right size to start with.
  53.  
  54. Please mail comments, criticisms, additions and amendments to me at
  55. cpplibs@trmphrst.demon.co.uk.
  56.  
  57. Libraries available via ftp
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. ---------------------------------------------------------
  60. Aisearch - a package to make writing problem solving programs easier.
  61.  
  62. Offers the programmer a set of search algorithms that may be used to
  63. solve all kind of different problems. The following search algorithms
  64. have been implemented: 
  65.  
  66.     - depth-first tree and graph search.
  67.     - breadth-first tree and graph search.
  68.     - uniform-cost tree and graph search.
  69.     - best-first search.
  70.     - bidirectional depth-first tree and graph search.
  71.     - bidirectional breadth-first tree and graph search.
  72.     - AND/OR depth tree search.
  73.     - AND/OR breadth tree search.
  74.  
  75. Although this package is meant as a tool for developing problem solving 
  76. software it is not meant exclusively for programmers that are familiar with
  77. the concept of problem representation and search techniques. The document
  78. accompanying this package first describes (though condensed) the theory of
  79. problem solving in AI and next explains how the search class library must be
  80. used. Furthermore, as the source code is richly commented and as also some
  81. demo programs are included the package should also prove useful to people that
  82. want to get acquainted with the subject.
  83.  
  84.     ftp from obelix.icce.rug.nl
  85.     in /pub/peter/aisearch.zip
  86.     or /pub/peter/aisearch.tar.Z
  87. ---------------------------------------------------------
  88. Source to the Book: Object-Oriented Software in C++
  89.  
  90. by      Michael A. Smith  (mas@unix.brighton.ac.uk)
  91. ref    "Object-Oriented Software in C++", Chapman & Hall,
  92.         London. 1993. ISBN 0 412 55380 5.
  93.  
  94.     ftp from unix.brighton.ac.uk
  95.     in /pub/mas
  96. ---------------------------------------------------------
  97. DOSTmUit - DOS Text Mode User Interface Toolkit
  98.  
  99. Enables C++ programmers to add a CUA-compliant user interface to their
  100. DOS programs without getting involved in screen coordinates and other
  101. messy details. The programmer merely states which interface objects are
  102. required, and how they are to be placed on the screen in relation to each
  103. other. Those familiar with the ET++ toolkit for the X windows system
  104. under Unix will get the general idea. 
  105.  
  106. Includes a class documentation facility (DocClass) which will generate a
  107. large text file from the source code giving details of every class,
  108. structure, enum and extern in the toolkit. This program will also work on
  109. your own C++ source code. Source is provided. 
  110.  
  111.     mail : uit@trmphrst.demon.co.uk
  112.  
  113.     ftp from ftp.demon.co.uk[158.152.1.65]
  114.     in pub/trumphurst/dosuit??.zip
  115.     Also uitbor??.zip for Borland C++ users
  116. ---------------------------------------------------------
  117. Lapack++
  118.  
  119. Description : C++ version of some of lapack fortran code.
  120. Author      : J. Dongarra, R. Pozo, D. Walker
  121. Version     : 0.9 beta
  122. Comments    : Developmental version of proposed C++ version of lapack.
  123.               Contains blas.h++ etc, but needs Fortran library to link.
  124. Documents   : Overview paper (9 pages postscript), release notes (7 page ps)
  125.  
  126.     ftp from netlib2.cs.utk.edu
  127.     in lapack++/*
  128. ---------------------------------------------------------
  129. MatClass
  130.  
  131. Description : a C++ class for numerical computation
  132. Author      : Chris Birchenhall (chris.birchenhall@mailhost.mcc.ac.uk}
  133. Comments    : Very complete.
  134.               *  Offers a general purpose dense, real matrix class
  135.               *  Has a family of decomposition classes based on
  136.                  LU, Cholesky, Householder QR and SVD
  137.               *  Has a family of OLS regression classes based on
  138.                  above decompositons
  139.               *  A family of special function classes
  140.               *  Random number class
  141.               *  Has a simplified I/O structure
  142. Documents   : Very thorough tex manual, with discussion of design philosophy.
  143.               Currently the manual does not cover all the features of the I/O.
  144.  
  145.     ftp from uts.mcc.ac.uk (130.88.200.3)
  146.     pub/matclass
  147. ---------------------------------------------------------
  148. Blas.cpp.shar.z
  149.  
  150. Author      : Damian McGuckin (damianm@eram.esi.com.au)
  151. Description : a BLAS in C++
  152.  
  153.     ftp from usc.edu
  154.     in pub/C-numanal
  155. ---------------------------------------------------------
  156. Texas Persistant Store
  157.  
  158. Paul R. Wilson and Sheetal V. Kakkad
  159. Object-Oriented Programming Systems research group (oops@cs.utexas.edu)
  160. Computer Sciences Dept., University of Texas at Austin
  161.  
  162. Texas is a free persistent store that can be used with standard C++ compilers,
  163. and works efficiently with very little modification to most C++ programs.
  164. It runs on several varieties of UNIX and should be very easy to port to most
  165. modern operating systems, such as OS/2, Windows NT, Mach, Windows 4.0, etc.
  166. (If things we hear are correct, Linux will provide the necessary virtual
  167. memory features soon, too, and Texas will be ported about fifteen minutes 
  168. later. :-)
  169.  
  170. Texas uses "pointer swizzling at page fault time", an address translation
  171. techique that converts pointers from an abstract format to actual virtual
  172. memory addresses when pages are first touched and brought into memory.
  173. (A similar technique, invented independently, is used in the market-leading
  174. persistent store/OODB, ObjectStore from Object Design Inc.)  This allows
  175. Texas to be highly portable, avoiding any assumptions about where a page
  176. of data will be an a process' virtual memory address space; it can also
  177. support very large addresses spaces efficiently on stock 32-bit hardware.
  178. (It could also be used to efficiently provide shared address spaces across
  179. networked heterogenous machines with different hardware address sizes, e.g.,
  180. across 32- and 64-bit machines.)
  181.  
  182. mailing list : oops@cs.utexas.edu
  183.  
  184.     ftp from cs.utexas.edu
  185.     in pub/garbage/texas
  186.     More info in pub/garbage/swizz.ps
  187.     and pub/garbage/texaspstore.ps
  188. ---------------------------------------------------------
  189. wxWindows is a C++ class library for building Motif, Open Look,
  190. Windows 3.1 and NT applications from the same source code. One simple
  191. API is provided for all platforms. wxWindows supports objects such as
  192. frames, subwindows, buttons, list boxes, icons, and bitmaps, and
  193. supports drawing into canvases, PostScript files, Windows printers,
  194. metafiles and bitmaps using the same drawing primitives.
  195.  
  196. wxWindows provides a hypertext help facility, and a utility for
  197. maintaining documentation in printed and three hypertext formats. It
  198. also provides an interprocess communication API based on DDE, that
  199. works under both Windows 3.1 and UNIX. Documentation is available in
  200. PostScript, RTF, Windows Help, wxHelp and HTML formats.
  201.  
  202.     Julian Smart
  203.     Artificial Intelligence Applications Institute
  204.     University of Edinburgh
  205.     80 South Bridge
  206.     Edinburgh
  207.     Scotland
  208.     EH1 1HN
  209.     EMAIL: J.Smart@ed.ac.uk
  210.     TEL:   031 650 2746
  211.  
  212.     ftp from skye.aiai.ed.ac.uk (192.41.104.6),
  213.     in directory pub/wxwin.
  214. ---------------------------------------------------------
  215. CNCL
  216.  
  217. Universal classes:
  218.     * Tree structured class hierarchy, similar to NIHCL.
  219.     * Classes for general purposes such as arrays, linked lists,
  220.       strings.
  221.     * Interface classes for UNIX system calls: pipes, select.
  222. Simulation:
  223.     * Event driven simulation.
  224.     * Statistical evaluation.
  225.     * Random number generators and distributions.
  226. Fuzzy logic:
  227.     * Fuzzy sets, fuzzy variables, fuzzy rules and inference
  228.       engine for building fuzzy controllers and expert systems.
  229. EZD:
  230.     * Interface classes for DEC's ezd graphics server.
  231.  
  232. This version of CNCL is known to compile and run on the following
  233. systems:
  234.     * SUN SPARCstation, SUNOS 4.1.3, GNU g++ 2.3.3/2.4.5,
  235.       libg++ 2.3/2.4
  236.     * SUN 3/60, SUNOS 4.1.3, GNU g++ 2.3.3/2.4.5,
  237.       libg++ 2.3/2.4
  238.     * LINUX 0.99.13, GNU g++ 2.4.5, libc 4.4.1, libc 4.4.4 +
  239.       libg++ 2.4
  240.  
  241. Distributed under the GNU Library General Public License.
  242.  
  243.     Communication Networks
  244.     Aachen University of Technology
  245.     D-52056 Aachen
  246.     Germany
  247.     Email: mj@dfv.rwth-aachen.de (Martin Junius)
  248.  
  249.     ftp from ftp.dfv.rwth-aachen.de  (137.226.4.111)
  250.     in directory pub/CNCL
  251. ---------------------------------------------------------
  252. RTTI implementation
  253.  
  254.     ftp from invaders.dcrl.nd.edu (129.74.18.54)
  255.     in /pub/software/rtti.tar.Z
  256.  
  257.     Arindam Banerji 
  258.     axb@cse.nd.edu 
  259.  
  260.     384 FitzPatrick Hall
  261.     Dept. of Computer Science & Engg. 
  262.     University of Notre Dame
  263.     Notre Dame, IN 46556
  264.     (219)-631-5273
  265.     (219)-631-5772
  266. ---------------------------------------------------------
  267. Lily (LIsp LibrarY) C++ class library which gives C++ programmers the
  268. capability to write LISP-style code. 
  269.  
  270. I think Lily will be useful in academia for instructors who
  271. want to teach artificial intelligence techniques with C++.  The
  272. garbage collection mechanism employed by Lily is slow which will make it
  273. unattractive for commercial use.
  274.  
  275. Documentation is minimal.  The "Lily User's Guide" (in file lily.txt) provides
  276. a good overview of the architecture of Lily -- the document is unfinished.  
  277. All of the example programs are from Winston's book "LISP Second Edition" so
  278. you will be much better off if you have a copy.  Steele's "Common LISP" 
  279. describes the behavior of the LISP functions.  
  280.  
  281. Lily uses the GNU Library General Public License.
  282.  
  283. Lily works well with GNU g++ version 2.4.5 (and probably earlier releases).
  284.  
  285. Lily works with Turbo C++ for Windows but not with Turbo C++ (though the
  286. current version hasn't been tested with Turbo C++ for Windows).
  287.  
  288. Lily does *not* work with AT&T's cfront because cfront does not handle 
  289. temporary objects very well.
  290.  
  291.     ftp from sunsite.unc.edu (152.2.22.81)
  292.     in /uploads/lily-0.1.tar.gz 
  293. ---------------------------------------------------------
  294. DiamondBase is a library of C++ routines and utilities that allow you 
  295. to add Relational Database functionality to your C++ programs. It
  296. is written entirely in C++, and great pains have been taken to
  297. ensure it compiles under a variety of compilers including gcc,
  298. cfront and Borland's C++ compiler for OS/2. It runs on a wide
  299. variety of Unix platforms and OS/2. There are no plans to support
  300. DOS or Windows at the moment. It comes with a 47 page manual.
  301.  
  302. Contact:
  303.     darrenp@dibbler.cs.monash.edu.au
  304.     kevinl@bruce.cs.monash.edu.au
  305.     davison@molly.cs.monash.edu.au
  306.  
  307.     ftp from pippin.cs.monash.edu.au
  308.     in pub/export/?
  309. ---------------------------------------------------------
  310. GINA++ - An O-O application framework for C++, X11R5, and OSF/Motif
  311.  
  312. Requires:  AT&T 3.0 based C++ compiler (Sun C++ 2.0.1), X11R5, Motif 1.2
  313. Platforms supported:    Sun Sparc, HP
  314.  
  315. GINA++ (The Generic INteractive Application for C++) is an object-
  316. oriented application framework that facilitates the development of
  317. applications with a graphical user interface. It is written in C++ and
  318. uses OSF/Motif and X for the user interface parts. GINA++ comes as a
  319. library of C++ classes, 10 small to medium demo applications, and it is
  320. fully documented. 
  321.  
  322. Components of GINA++ are: (1) A C++ encapsulation of OSF/Motif providing
  323. easy-to-use mechanisms for deriving new widget classes completely in C++,
  324. (2) Support for object-oriented graphics (rectangles, arrows, circle,
  325. etc), (3) An unlimited undo/redo history mechanism, (4) supporting
  326. classes for data structures (list, arrays, etc), run-time type
  327. information, and a notification mechanism. 
  328.  
  329. The classes of GINA++ constitute an executable program - the generic
  330. application - which possesses the basic functionality and the user
  331. interface components common to all interactive graphical applications,
  332. but lacks any application-specific behavior. The predefined functionality
  333. and behavior is inherited by deriving subclasses from the existing GINA++
  334. classes. Application specific behavior is implemented by adding new
  335. classes and member functions. Differences to the standard application are
  336. coded by refining virtual member functions inherited from GINA++. 
  337.  
  338. Author: Andreas Baecker (baecker@gmd.de), 
  339.     GMD, 
  340.     P.O. Box 1316, 
  341.     D-53731 Sankt Augustin
  342.  
  343.     ftp from ftp.gmd.de:
  344.     in /gmd/ginaplus
  345.     or ftp.x.org:
  346.     in /contrib
  347. ---------------------------------------------------------
  348. Motif++ - Ronald van Loon.
  349. A wrapper-library, that encapsulates Motif widgets in C++ classes. All
  350. resources of these Widgets can now be set through member-functions, while
  351. objects can be used in callback-functions. 
  352.  
  353. The July 93 release offers:
  354. - Easy configuration (even for non-imake-gurus)
  355. - Full support for X11R4 as well as X11R5
  356. - Full support for Motif 1.1 and Motif 1.2 (including Drag and Drop)
  357. - Support for Xbae widgetset 
  358. - Support for the xpm library
  359. - Percentage widgets
  360. - Generic Widget
  361. - Support for WCL Table Widget
  362. - A library for easy manipulation of Visuals 
  363. - A library that reads PBMPLUS files, as well as providing an extension to 3D
  364.   of the format.
  365. - Lots of demos and testfiles (even somewhat useful programs)
  366. - An article I wrote on the usage of Motif, X and C++, previously posted
  367.   on Usenet.
  368. - all filenames smaller than 14 characters
  369.  
  370. Requires:
  371.     X11R4 or any later version
  372.     Motif 1.1 or any later version
  373.     C++ compiler, compatible with cfront 2.0 or later
  374.     imake
  375.     a bourne shell (sh, bash, ksh ...) that supports shellfunctions.
  376.     sed
  377.  
  378.     mail "rvloon@cv.ruu.nl".
  379.     Tel: +31 33 758 293 (if desparate !)
  380.  
  381.     mailing list : motif++@cv.ruu.nl
  382.     subscriptions : motif++-request@cv.ruu.nl
  383.  
  384.     ftp from decuac.dec.com: 
  385.     in /pub/X11/motif++.28.jul.93.tar.gz
  386.     or from nrcnet0.nrc.ca (132.246.160.2): 
  387.     in /pub/motif++/motif++.28.jul.93.tar.gz
  388.     or from ftp.wg.omron.co.jp: 
  389.     in /pub/X11/misc/MOTIF.AND.WIDGETS/Motif++.tar.Z 
  390.     or from src.doc.ic.ac.uk:
  391.     in /packages/motif++/motif++.28.jul.93.tar.gz
  392. ---------------------------------------------------------
  393. OATH (Object-oriented Abstract Type Hierarchy) was designed
  394. as an experiment in increasing object-oriented reuse.
  395. It has a fairly high learning curve, but potentially 
  396. higher gains if you are looking for a more flexible and
  397. robust abstraction.  It is completely unsupported.
  398.  
  399.     ftp from csc.ti.com (192.94.94.1)
  400.     in pub/oath.tar.Z
  401. ---------------------------------------------------------
  402. COOL (C++ Object-Oriented Library) was designed as an 
  403. experiment in templates and exception handling.  Templates
  404. are implemented via a preprocessor with an advanced macro
  405. capability.  It displays a different set of trade-offs 
  406. from OATH.  It is also completely unsupported.
  407.  
  408.     ftp from csc.ti.com (192.94.94.1)
  409.     in pub/COOL.tar.Z
  410. ---------------------------------------------------------
  411.  
  412. NIHCL (National Institute of Health's C++ Library) is
  413. essentially a mapping of part of Smalltalk's library
  414. into C++.  It lies somewhere between OATH and COOL.
  415. It is a little better supported and there is a textbook
  416. by the author, Keith Gorlen, that is fairly good documentation.
  417. However, the Smalltalk hierarchy is not completely 
  418. consistent (IMO) with the C++ strong typing nature.
  419. It is weakly supported.
  420.  
  421.     ftp from alw.nih.gov (198.231.128.251)
  422.     in pub/nihcl.tar.Z
  423. ---------------------------------------------------------
  424. libg++ (GNU's C++ library) is probably only relevant if
  425. you are using g++; and if so, you already know about it.
  426. It does have some good implementations of bignum's and
  427. of regular expressions and strings.
  428.  
  429.     ftp from aeneas.mit.edu (18.71.0.38)
  430.     in pub/gnu/libg++-*
  431. ---------------------------------------------------------
  432. InterViews is an excellent GUI class library developed by Stanford
  433. University. Make sure you get v3.1 or later. This library contains
  434. excellent examples of multiple inheritance used profitably. I understand
  435. that InterViews development will not continue past the current version;
  436. author Mark Linton is concentrating his efforts on the X Consortium
  437. Fresco project, which should show up in X11R6. 
  438.  
  439.     ftp from interviews.stanford.edu
  440. ---------------------------------------------------------
  441. Unidraw is a graphical editor building library based on top
  442. of InterViews.
  443.  
  444.     ftp from interviews.stanford.edu
  445. ---------------------------------------------------------
  446. ET++ is a large GUI library and other C++ tools developed
  447. in Europe.
  448.  
  449.     ftp from ftp.inria.fr
  450.     in gnu/et++-2.0.tar.Z
  451. ---------------------------------------------------------
  452. LEDA, A Library of Efficient Data Types and Algorithms, by Stefan N"aher
  453. from Germany. It is available for educatioal purposes but its NOT in the
  454. public domain. 
  455.  
  456. Provides basic data-types like lists, stacks, queues, trees, sets,
  457. partitions, priority queues and a few others. These are parameterizable
  458. classes, you may add your own datatype and have a priority queue ...
  459. An important datatype is a graph, these are also parameterizable and there
  460. are useful algorithms for them like shortest path, transitive closure,
  461. matching, maximum flow, spanning tree and others, we have implemented a few
  462. algorithms for dealing with perfect graphs, but these ar not part of the
  463. standard library. The latest part deals with computational geometry.
  464.  
  465. It can be used with C++ compilers which understand templates, such as 
  466. cfront 3.0 and g++ 2.4.5.
  467.  
  468.     Stefan Naeher
  469.     Max-Planck-Institut fuer Informatik
  470.     Im Stadtwald, 
  471.     6600 Saarbruecken, 
  472.     Germany
  473.     (stefan@mpi-sb.mpg.de)
  474.  
  475.     ftp from sbsvax.cs.uni-sb.de (134.96.252.31)
  476.     in /pub/LEDA/LEDA-<version>.tar.Z
  477. ---------------------------------------------------------
  478. Code from Hansen's C++ Answers book
  479. by      Tony L. Hansen
  480. ref     "The C++ Answer Book", Addison-Wesley, 1990, ISBN 0-302-11497-6
  481.  
  482.     ftp from netlib@research.att.com
  483.     in c++/answerbook
  484. ---------------------------------------------------------
  485. Code from Coplien's, "Advanced C++ Programming Styles and Idioms"
  486. by      James O. Coplien
  487. ref     "Advanced C++ Programming Styles and Idioms", Addison-Wesley, 1992, ISBN
  488.  
  489.     ftp from netlib@research.att.com
  490.     in c++/idioms
  491. ---------------------------------------------------------
  492. Brent's univariate minimizer and zero finder.
  493. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  494. ref     G.Forsythe, M.Malcolm, C.Moler, Computer methods for
  495.         mathematical computations.
  496. prec    double
  497. see     c++/serv_cc.shar
  498.  
  499.     ftp from netlib@research.att.com
  500.     in c++/brent_cc.shar
  501. ---------------------------------------------------------
  502. Radix-2 Fast Fourier Transform
  503. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  504. prec    single/double
  505. see     c++/lin_alg.shar, c++/serv_cc.shar
  506.  
  507.     ftp from netlib@research.att.com
  508.     in c++/fft.shar
  509. ---------------------------------------------------------
  510. High level vector operations
  511.         Contains the Aitken-Lagrange interpolation over the table of uniform or
  512.         arbitrary mesh, and the Hook-Jeevse multidimensional minimizer.
  513. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  514. prec    single/double
  515. see     c++/lin_alg.shar, c++/serv_cc.shar
  516.  
  517.     ftp from netlib@research.att.com
  518.     in c++/hl_vector.shar
  519. ---------------------------------------------------------
  520. basic linear algebra classes
  521. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  522. prec    single/double
  523. see     c++/serv_cc.shar
  524.  
  525.     ftp from netlib@research.att.com
  526.     in c++/lin_alg.shar
  527. ---------------------------------------------------------
  528. A couple of functions that ought to be in the standard
  529. C++ environment;
  530. - Updated G++ class File that allows now for the file name to
  531.   include pipes, say,
  532.     File in_file("zcat aaa.Z |","r");
  533. - Resource facility, or managing global "private" parameters
  534.   that specify various program "options". It helps keep
  535.   reasonable number of arguments in function calls.
  536. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  537.  
  538.     ftp from netlib@research.att.com
  539.     in c++/serv_cc.shar
  540. ---------------------------------------------------------
  541. C++ implementation of differential algebra
  542. by      Leo Michelotti <michelotti@adcalc.fnal.gov>
  543. This is temporarily unavailable while we resolve the question of whether
  544. inclusion of codes from Numerical Recipes makes distribution illegal. 
  545.  
  546.     ftp from netlib@research.att.com
  547.     in c++/mxyzptlk.shar
  548. ---------------------------------------------------------
  549. ParLib++, Parallel Programming Classes for C++:
  550.  
  551.     David Greco
  552.     David.Greco@crs4.it
  553. ---------------------------------------------------------
  554. P++, Parallel Programming Classes for C++:
  555.  
  556.     Dan Quinlan
  557.     danq@lemond.colorado.edu
  558. ---------------------------------------------------------
  559. "C* in C++", Parallel Programming Classes for C++:
  560.  
  561.     Terry Bossomaier
  562.     terry@arp.anu.edu.au
  563. ---------------------------------------------------------
  564. pC++ is a preprocessor for C++ that implements a data parallel
  565. extension. Machines currently supported are CM5, paragon, KSR-1,
  566. sequent, BBNTC2000 (and soon ibm sp1, and cray t3d), as well as in
  567. uniprocessor mode on most workstations.
  568.  
  569.     gannon@cs.indiana.edu
  570. ---------------------------------------------------------
  571. DoPVM - a class built on PVM, for message passing environments.
  572.  
  573.     Skip Hartley
  574.     skip@mathcs.emory.edu
  575. ---------------------------------------------------------
  576. The SPLASH c++ class library
  577.  
  578. (Small Perl-like List And String Handling class library)
  579.  
  580. SPLASH is a c++ class library that implements many of the Perl
  581. constructs and data types.
  582.  
  583. For those not familiar with Perl, it is an excellent scripting language
  584. by Larry Wall and is available for most platforms.
  585.  
  586. This Class library provides List, String, Regular Expression, and text
  587. manipulation handling capabilities based on those provided in Perl.
  588.  
  589. This is available as a compressed tar file, shar file, .zoo or .zip format
  590. with MSDOS compatible names.
  591.  
  592. contact: morris@netcom.com
  593.  
  594.     ftp from netcom.com
  595.     in pub/morris/splash.tar.Z
  596.     and pub/morris/splash.shar.Z
  597.     and pub/morris/splash.zip (DOS)
  598.     and pub/morris/splash.zoo (DOS)
  599. ---------------------------------------------------------
  600. OSE consists of three C++ class libraries, a build environment based on
  601. GNU make, programs for documentation extraction and other miscellaneous
  602. tools. 
  603.  
  604. The C++ libraries include generic classes and some UNIX specific classes.
  605. Collection classes use templates compatable with AT&T C++ 3.0. If you
  606. have a C++ compiler which does not support templates, a template
  607. preprocessor supplied with OSE can be used. 
  608.  
  609. OSE uses a GNU style configure script, making it relatively easy to
  610. install, even on platforms for which it may not yet have been compiled.
  611. For DOS users, a script is provided to create a copy of the C++ libraries
  612. suitable for compilation on that platform. 
  613.  
  614. To get further information about OSE, without actually fetching the
  615. complete package, either fetch the file "ANNOUNCE" from one of the
  616. ftp sites below, or send mail to:
  617.     ose@research.otc.com.au
  618.  
  619. Europe:
  620.     ftp from ftp.th-darmstadt.de [130.83.55.75]
  621.     in directory pub/programming/languages/C++/class-libraries/OSE
  622.  
  623. United States:
  624.     ftp from straylight.acs.ncsu.edu [152.1.65.11]
  625.     in directory /pub/ose
  626.  
  627. Australia:
  628.     ftp from csis.dit.csiro.au [192.41.146.1]
  629.     in directory pub/otc
  630. ---------------------------------------------------------
  631. COOL - Texas Instrument's "C++ Object Oriented Library".
  632.  
  633. COOL includes classes like AVL_Tree, Association, Bignum, Binary_Tree,
  634. Bit_Set, Complex, Date_Time, Envelope, Gen_String, Handle, Hash_Table,
  635. Iterator, List, M_Vector, Matrix, N_Tree, Pair, Quaternion, Queue, Random,
  636. Range, Rational, Regexp, Set, Shared, Stack, String, Timer, Value, Vector.
  637.  
  638. COOL uses a special "template" syntax which is preprocessed by a special 
  639. cpp (distributed with COOL). This enables it to be used with compilers 
  640. which do not support templates.
  641.  
  642.  
  643.     fto from csc.ti.com
  644.     in ~ftp/pub/COOL.tar.Z
  645. ---------------------------------------------------------
  646. GECOOL 2.1 is a reworking and enhancement of Texas Instrument's "C++
  647. Object Oriented Library" (at csc.ti.com in ~ftp/pub/COOL.tar.Z) by some
  648. programmers at General Electric. 
  649.  
  650. JCOOL's main difference from COOL and GECOOL is that it uses real C++
  651. templates instead of a similar syntax that is preprocessed by a
  652. special 'cpp' distributed with COOL and GECOOL.  Of course, this
  653.  
  654.  
  655.     ftp from cs.utexas.edu
  656.     in pub/COOL
  657. ---------------------------------------------------------
  658. SOCKET++
  659.  
  660. C++ iostream like library for sockets and pipes.
  661.  
  662.     ftp from from uvaarpa.virginia.edu:
  663.     in /public_access/socket++-XX.tar.gz (XX - version no)
  664.     or from cs.ucl.ac.uk [128.16.5.31]
  665.     in coside/gnu/sockets++.tar.z
  666. ---------------------------------------------------------
  667. PDBlib is a class library written in C++ for modeling a macromolecular
  668. structure at the level of detail (excluding symmetry information) found
  669. in a Protein Data Back (PDB) file. A class is supplied to read a PDB file
  670. into a PDBlib representation. This class is independent of the actual
  671. representation and other forms of input, for example from a relational
  672. database like SESAM, are possible. 
  673.  
  674. The library is made extensible by a close coupling between intrinsic and
  675. external classes. By writing only to the external classes you will remain
  676. compliant with future versions of the library. 
  677.  
  678. You don't get source code. This is a temporary situation while we attempt
  679. to centralize bug fixes and additions to the library. If you find this
  680. situation unworkable source code is available by signing a copyright
  681. agreement which is available with the distribution. 
  682.  
  683. Platforms:
  684.  
  685. PDBLib.1.0.SGI.tar.Z    Compressed tar file of PDB object classes library
  686.                         and header files for SGI.  AT&T C++ release 2.1 & 3.0
  687.                         compatible.
  688.  
  689. PDBLib.1.0.Sun.tar.Z    Compressed tar file of PDB object classes library
  690.                         and header files for Sun Sparc station.  AT&T C++
  691.                         release 2.1 & 3.0 compatible.
  692.  
  693. PDBLib.1.0.Cvx.tar.Z    Compressed tar file of PDB object classes library
  694.                         and header files for Convex.  AT&T C++ release 2.1
  695.                         compatible.
  696.  
  697. PDBLib.1.0.Alpha.tar.Z  Compressed tar file of PDB object classes library
  698.                         and header files for Dec 3000 (Alpha AXP) with OSF1.
  699.                         Dec C++ (cxx) release 1.2 compatible.
  700.  
  701. Address specific programming questions on PDBlib to Weider Chang, the
  702. author of most of the code (weider@cuhhca.hhmi.columbia.edu). 
  703.  
  704. Address questions concerning PDBview to Ilya Shindyalov
  705. (shindyal@cuhhca.hhmi.columbia.edu)
  706.  
  707. Address general comments, criticisms, questions about future directions
  708. etc. to Phil Bourne (system@cuhhca.hhmi.columbia.edu). 
  709.  
  710.     ftp from cuhhca.hhmi.columbia.edu (128.59.98.1)
  711.     in pub/programs/PDB/PDBlib
  712. ---------------------------------------------------------
  713. molbio++ is a C++ library for molecular biosequence analysis.  Major 
  714. features include:
  715.  
  716. classes and services for
  717.   reading and writing sequence data in the following formats:
  718.     Genbank Flatfile
  719.     EMBL / SwissProt
  720.     GCG / Wisconsin
  721.     Fasta / Pearson
  722.     PIR
  723.     NCBI Retrieve Server (read-only)
  724.   limited parsing of fields and features in biosequence files
  725.   storing amino acid or nucleic acid sequences
  726.   iterating over a biosequence
  727.   calculating and storing counts or frequencies of amino acids
  728.     or nucleotides
  729.   device-independent graphics, via GCG's FIGURE program
  730.   translating nucleotide sequences into proteins using
  731.     the universal genetic code or modifications thereof.
  732.   parsing BLAST output
  733.   calculating pI and molecular weight of proteins
  734.   amino acid hydropathy values of Kyte & Doolittle
  735.  
  736.     ftp from golgi.harvard.edu  (128.103.161.55)
  737.     pub/CONTRIBUTIONS/molbio++
  738. ---------------------------------------------------------
  739. SESAME, by C. Tietz, Neural net software ?
  740.  
  741.     ftp from ftp.gmd.de
  742.     in /gmd/as/sesame.
  743. ---------------------------------------------------------
  744. TOLKIEN (TOoLKIt for gENetics-based applications).
  745.  
  746. The tool contains objects for both GA and classifier system applications."
  747. It's in some kind of alpha-status.
  748.  
  749.     tang028@cs.cuhk.hk
  750. ---------------------------------------------------------
  751. GAME - Parallel Genetic Algorithms Theory and Applications
  752.  
  753. Edited by: J. Stender
  754. Publisher: IOS Press
  755. Frontiers in Artificial Intelligence and Applications series
  756. 1993, 225 pp; hard cover; w/ disk
  757. ISBN: 90 5199 087 1
  758. Price: $85, 59 pounds sterling
  759.  
  760. The first version of the GAME Virtual Machine software and two examples
  761. that come with the book can be obtained also by ftp.
  762.  
  763.     ftp from bells.cs.ucl.ac.uk
  764.     in papagena/game/version1 directory
  765. ---------------------------------------------------------
  766. The Generic Linked List Package is a package to define, create, update
  767. query and delete one or more (nodes of) linked lists, to sort linked
  768. lists, and so on. The user doesn't have to take care of allocating a
  769. number of bytes for a node, inserting on the right place, deleting and
  770. freeing a node and so on.
  771.  
  772.     ftp from ftp.tno.nl or hermes.bouw.tno.nl
  773.     in /pub/TNO/BOUW/Bouwinf/linkedlist0.10.shar
  774. ---------------------------------------------------------
  775. Newmat : a very thorough matrix class
  776.  
  777. volume34, issue 107 of comp.sources.misc
  778.  
  779. Author      : Robert Davies (robertd@kauri.vuw.ac.nz)
  780. Comments    : Optimized expression evaluation.  Many decompositions.
  781. Systems     : Unix (g++ 2.3.3 ok), MS-DOS (Borland C++)
  782.  
  783. People trying to run under Gnu or Watcom should contact the author
  784. for a list of patches.
  785.  
  786.     ftp from unix.hensa.ac.uk
  787.     in /pub/uunet/usenet/comp.sources.misc/volume34/newmat07
  788.     or from plaza.aarnet.edu.au (139.130.4.6):
  789.     in /micros/pc/oak/cplusplus/newmat07.zip
  790. ---------------------------------------------------------
  791. nlmdl : a library for estimation of nonlinear models
  792.  
  793. Nonlinear maximisation, estimation, includes a real matrix class
  794.  
  795. Systems     : Unix, MS-DOS (Turbo C++)
  796. Author      : A. Ronald Gallant, arg@ccvr1.cc.ncsu.edu
  797.  
  798.     ftp from ftp.uu.net
  799.     in /usenet/comp.sources.misc/volume16/nlmdl
  800.     or from ccvr1.cc.ncsu.edu (128.109.212.20)
  801.     in pub/arg/nlmdl
  802. ---------------------------------------------------------
  803. Octave : Matlab-like interactive system for numerical computations
  804.  
  805. Includes C++ classes for matrix manipulation, numerical integration, and
  806. the solution of systems of nonlinear equations, ODEs and DAEs.
  807. Distributed under the GPL. 
  808.  
  809. Systems     : Compiles and runs on SPARC, RS/6000, DEC/Ultrix,
  810.               i386/Linux and probably most Unix-like systems that have
  811.               a working g++/libg++.
  812. Author      : John W. Eaton <jwe@che.utexas.edu>
  813.  
  814.     ftp from ftp.che.utexas.edu
  815.     in /pub/octave/octave-M.N.tar.Z
  816. ---------------------------------------------------------
  817. Andy Register <andy@cerl.gatech.edu> has a matrix library ...
  818.  
  819. It is still under development so there is no documentatin and some
  820. functions have not been throughly tested. It is a departure from most
  821. matrix libs in that it includes things like UpperTriangular different
  822. >from Diagonal, from Row, from Col, etc. 
  823.  
  824.     ftp from ftp.cerl.gatech.edu
  825.     in pub/c++/gtmatrix
  826. ---------------------------------------------------------
  827. Awesime : a C++ task library explicitly designed for simulation.
  828.  
  829. Author      : Dirk Grunwald (grunwald@foobar.cs.colorado.edu)
  830.  
  831.     ftp from ftp.cs.colorado.edu
  832.     in pub/cs/misc/Awesime
  833. ---------------------------------------------------------
  834. BLAS in C++
  835.  
  836. Author      : Damian McGuckin (damianm@eram.esi.com.au)
  837.  
  838.     ftp from usc.edu
  839.     in pub/C-numanal/blas.cpp.shar.z
  840. ---------------------------------------------------------
  841. Cvmath.cc
  842. An include file to make complex math look like regular math.
  843.  
  844. Author      : Leonard Kamlet, lik@engin.umich.edu
  845. Comments    : The file uses a lot of operator overloading, so that
  846.               if x=a+ib and y=c+id, the code for multiplying the two
  847.               together looks like z = x*y;  Also, the file includes nrutil
  848.               from Numerical Recipes, and adds the complex versions for
  849.               vectors and matrices.
  850.  
  851.     ftp from usc.edu
  852.     in pub/C-numanal/cvmath.cc
  853. ---------------------------------------------------------
  854. Gnans : Simulation of stochastic and deterministic dynamical systems
  855.  
  856. System      : SunOS 4.1.x, IRIX, AIX; X11 Release 4-5 incl. Athena Widgets
  857. Author      : Bengt Martensson <bengt@mathematik.uni-Bremen.de>
  858. Comments    : A program (and language) for dynamical systems. Includes
  859.               simple scripting language. Graphical user interface. Copyleft.
  860.  
  861.     ftp from ftp.mathematik.uni-Bremen.de
  862.     in /pub/gnans
  863. ---------------------------------------------------------
  864. Kalman : A class library for Kalman filtering
  865.  
  866. Author      : Skip Carter (skip@taygeta.oc.nps.navy.mil)
  867. Description : A class library for Kalman filtering
  868. Comments    : Contains lumatrix.c++ etc.
  869. Language    : g++ 2.4.2 tested OK.
  870.  
  871.     ftp from usc.edu
  872.     in pub/C-numanal/kalman.tar.gz
  873. ---------------------------------------------------------
  874. Matrix
  875.  
  876. A C++ Matrix class, including a matrix implementation of the backward
  877. error propagation (backprop) algorithm for training multi-layer, feed-
  878. forward artificial neural networks 
  879. Author      : E. Robert (Bob) Tisdale, edwin@cs.ucla.edu
  880. Comments    : A C++ interface to existing C and FORTRAN matrix libraries.
  881. Documents   : LaTeX manual.
  882.  
  883.     ftp from ftp.cs.ucla.edu
  884.     in pub/Matrix.tar.Z
  885. ---------------------------------------------------------
  886. Presto : C++ routines for fine-grained parallel programming (lightweight
  887. threads) on multiprocessors. Tuned for the Sequent machines, but highly
  888. adaptable and customizable. 
  889.  
  890. Systems : Unix-like OS on (moderate) multiprocessor machines 
  891. Author : Brian N. Bershad, Edward D. Lazowska, Henry M. Levy 
  892.  
  893.     frp from cs.washington.edu
  894.     in pub/presto1.0.tar.Z 
  895. ---------------------------------------------------------
  896. Range : C++ class for range arithmetic. 
  897.  
  898. Associated with article in TOMS, Dec 1992 title "Precise computation
  899. using range arithmetic, via C++" 
  900. Author      : Oliver Aberth and Mark J. Schaefer
  901.  
  902.     ftp from math.tamu.edu
  903.     in pub/range/range.tar.Z
  904. ---------------------------------------------------------
  905. SA : library for simulated annealing
  906.  
  907. Author      : Skip Carter (skip@taygeta.oc.nps.navy.mil)
  908.  
  909.     ftp from usc.edu
  910.     in pub/C-numanal/sa.zoo
  911. ---------------------------------------------------------
  912. Sdeint
  913.  
  914. A Runge-Kutta like class for integrating systems of Stochastic
  915. Differential Equations 
  916.  
  917. Author      : Skip Carter, skip@taygeta.oc.nps.navy.mil
  918.  
  919.     ftp from usc.edu
  920.     in pub/C-numanal/sdeint.tar.z
  921. ---------------------------------------------------------
  922. Simpack : tools for writing simulations with a EECS bias
  923.  
  924. Author      : Paul A. Fishwick, fishwick@cis.ufl.edu
  925.  
  926.     ftp from bikini.cis.ufl.edu
  927.     in pub/simdigest/tools/simpack
  928.     See also cis/tech-reports/tr92/tr92-022.ps.Z
  929. ---------------------------------------------------------
  930. PARODY : C++ DATABASE LIBRARY
  931.  
  932. Al Stevens has written a book on the subject called
  933. `Database programming in C++' or something. An article
  934. on the subject was printed in Doctor Dobbs Journal
  935. some time ago.
  936.  
  937. The nice thing is that Stevens also wrote a C++ library
  938. adding persistence to C++, and the source is available.
  939. The library is called PARODY and compiles under most
  940. DOS-based C++ compilers. A slight rewrite of the GUI-
  941. routines has to be done to make it compile under GNU C.
  942.  
  943.     ftp from ftp.mv.com
  944.     in pub/ddj/1992.12/parody.zip 
  945.        pub/ddj/1992.12/parody.dir (directory of zip)
  946. ---------------------------------------------------------
  947. SMURPH : A C++ library which could be useful for building a network
  948. simulator.It comes withextensive documentation and examples.
  949.  
  950.     ftp from menaik.cs.ualberta.ca (129.128.4.241)
  951.     in /pub/smurph*
  952. ---------------------------------------------------------
  953. C++ FEM (Finite Element Method) Library 
  954.  
  955. In addition to FEM related classes, this library also has:
  956.  
  957.         1) Some simple garbage collection stuff
  958.         2) An automatic differentiation library
  959.         3) A sparse matrix library
  960.  
  961. This is an initial release and people should *expect* to have to do some
  962. work to get it running on their system. If you have gcc-2.3.3, libg++-2.
  963. 3[.1], Gnu make and makedepend you shouldn't have too much difficulty
  964. however. The code is unsupported, and is distributed under the terms of
  965. the GNU Public License. 
  966.  
  967.     Michael Tiller
  968.     University of Illinois (Urbana-Champaign)
  969.     (tiller@solace.me.uiuc.edu)
  970.  
  971.     ftp from usc.edu
  972.     int /pub/C-numanal/femlib-1.1.tar.gz
  973. ---------------------------------------------------------
  974. Ode Object database v2.0
  975.  
  976. Ode is an object-oriented database based on the C++ database model.
  977. The primary interface to Ode is the database programming language O++
  978. which is based on C++.
  979.  
  980. Ode is now available to Universities. The current version of Ode runs on
  981. Sun (Sparc) workstations and users must have C++ release 2.0 or a later
  982. release. If you are interested in using Ode and giving us feedback on
  983. your experience with Ode, please send mail to nhg@research.att.com with
  984. the appropriate information. 
  985.  
  986.     Narain Gehani
  987.     AT&T Bell Labs 3D-414
  988.     600 Mountain Ave
  989.     Murray Hill, NJ 07974
  990.  
  991.     ftp from research.att.com.
  992.     in dist/ode2.0/2.0.oppbin.tar.Z
  993. ---------------------------------------------------------
  994. C++SIM 1.0  - a simulation package written in C++. 
  995.  
  996. C++SIM provides discrete process based simulation similar to that
  997. provided by the simulation class and libraries of SIMULA. The linked list
  998. manipulation facilities provided by SIMSET are also included in the
  999. package. 
  1000.  
  1001. The simulation package requires the use of a threads package and
  1002. currently only works with Sun's lightweight process library or the Gnu
  1003. thread package (which *is* included in the distribution). The package has
  1004. been used on Sun workstations, and, with the exception of the thread
  1005. library requirement, contains no system specific code which should make
  1006. porting to other systems relatively easy. The code has been compiled
  1007. with Cfront 2.1 and Cfront 3.0.1 and g++ 2.3.3
  1008.  
  1009.     ftp from arjuna.ncl.ac.uk
  1010. ---------------------------------------------------------
  1011. ADAPTIVE Communication Environment (ACE) C++ IPC wrappers (C++Wrapper).
  1012.  
  1013. This release contains contains the source code, documentation, and
  1014. example test drivers for a number of C++ wrapper libraries and higher-
  1015. level distributed application frameworks developed as part of the
  1016. ADAPTIVE project at the University of Calfornia, Irvine. 
  1017.  
  1018. The C++ wrappers encapsulate many of the user-level BSD and System V
  1019. Release 4 IPC facilities such as sockets, TLI, select and poll, named
  1020. pipes and STREAM pipes, the mmap family of memory-mapped file commands,
  1021. System V IPC (i.e., shared memory, semaphores, message queues), and
  1022. explicit dynamic linking (e.g., dlopen/dlsym/dlclose) using type-secure,
  1023. object-oriented interfaces. 
  1024.  
  1025. The higher-level distributed application frameworks integrate and enhance
  1026. the lower-level C++ wrappers to support the configuration of concurrent
  1027. network daemons composed of monolithic and/or stackable services 
  1028.  
  1029. A relatively complete set of documentation and extensive examples are
  1030. included in the release. A mailing list is available for discussing bug
  1031. fixes, enhancements, and porting issues regarding ACE. Please send mail
  1032. to ace-users-request@ics.uci.edu if you'd like to become part of the
  1033. mailing list. 
  1034.  
  1035.     ftp from ics.uci.edu (128.195.1.1) 
  1036.     in gnu/C++_wrappers.tar.Z
  1037. ---------------------------------------------------------
  1038. CB++ (CommonBase Database Access Library for C/C++)
  1039.  
  1040. This library was written in 1989 as a basis for storing C++ objects in
  1041. a relational database. The development of such a system was stopped in
  1042. 1990 because of problems with the MS-DOS environment used in this time.
  1043. My involvement in various user interface projects here in the institute
  1044. and otherwhere made it sleep until last week.
  1045.  
  1046. Okay, here is it. It is only the database access layer of the projected
  1047. object storage system but it has some useful features which are provided
  1048. by commercial tools out there:
  1049.  
  1050. * Builds on the C language interface of a database, there is no need
  1051.   for a precompiler (like embedded SQL - which is totally unusable in
  1052.   combination with C++, at least it was three years ago...)
  1053. * Very simple to use. Unlike the native C interfaces of the databases
  1054.   it is as simple as embedded SQL or some 4th generation languages.
  1055. * Makes applications portable among different SQL databases. The library
  1056.   itself is relatively easy to port as the database vendor specific code
  1057.  
  1058.  
  1059.     ftp from ftp.x.org 
  1060.     in /contrib/CB++.0.1.*
  1061. ---------------------------------------------------------
  1062. OBST - persistent object management system 
  1063.  
  1064. The persistent object management system OBST was developed by
  1065. Forschungszentrum Informatik (FZI) as a contribution to the STONE
  1066. project. 
  1067.  
  1068. Sites interested in getting information about new OBST developments
  1069. are welcome to register in their mailing list by sending a mail with
  1070. subject "obst-mailing-list" to stone@fzi.de.
  1071.  
  1072.     Forschungszentrum Informatik FZI
  1073.     STONE Projekt
  1074.     Haid-und-Neu-Strasse 10-14
  1075.     D-7500 Karlsruhe 1
  1076.     Germany
  1077.     Tel : ++49-721-9654-601
  1078.     Fax : ++49-721-9654-609
  1079.     Teletex : 721 190 fziKA
  1080.     email : stone@fzi.de
  1081.  
  1082.     ftp from gate.fzi.de [141.21.4.3]. 
  1083.     in /pub/OBST.
  1084. ---------------------------------------------------------
  1085. GRAS - A Graph-Oriented Database System for SE Applications
  1086. Copyright (C) 1987-1992  Lehrstuhl Informatik III, RWTH Aachen
  1087. This library is free software under the terms of the GNU Library 
  1088. General Public License.
  1089.  
  1090. The system GRAS with interfaces for the programming languages Modula-2
  1091. and C is available as public domain software for Sun3/Sun4 workstations
  1092. (the GRAS system itself is implemented in Modula-2 and consists of many
  1093. layers which might be reusable for the implementation of other systems): 
  1094.  
  1095.   There are several files contain documentation, sources, binaries,
  1096.   and libraries. All binaries are for Sun/4 machines. Sun/3 binaries
  1097.   are shipped only if explicitly requested.
  1098.  
  1099.     Lehrstuhl f"ur Informatik III
  1100.     University of Technology Aachen (RWTH Aachen),
  1101.     Ahornstr. 55,
  1102.     D-5100 Aachen
  1103.     Contact : Dr. Andy Sch"urr (or Richard Breuer),
  1104.     andy@rwthi3.informatik.rwth-aachen.de
  1105.     ricki@rwthi3.informatik.rwth-aachen.de (for technical support)
  1106.  
  1107.     ftp from tupac-amaru.informatik.rwth-aachen.de (137.226.112.31) 
  1108.     in /pub/unix/GRAS522_3
  1109. ---------------------------------------------------------
  1110. MTL110JE.ZIP -- multithreading class library
  1111.  
  1112. DOS PC/Borland C++ specific.
  1113.  
  1114.     ftp from oak.oakland.edu
  1115.     in /pub/msdos/cplusplus
  1116.     or garbo.uwasa.fi
  1117.     in /pc/c
  1118. ---------------------------------------------------------
  1119. CCL110JE.ZIP -- coroutine class library
  1120.  
  1121. DOS PC/Borland C++ specific.
  1122.  
  1123.     ftp from oak.oakland.edu
  1124.     in /pub/msdos/cplusplus
  1125.     or garbo.uwasa.fi
  1126.     in /pc/c
  1127. ---------------------------------------------------------
  1128. TSR100JE.ZIP -- TSR class library
  1129.  
  1130. DOS PC/Borland C++ specific.
  1131.  
  1132.     ftp from oak.oakland.edu
  1133.     in /pub/msdos/cplusplus
  1134.     or garbo.uwasa.fi
  1135.     in /pc/c
  1136. ---------------------------------------------------------
  1137. XMS200JE.ZIP -- XMS array class library
  1138.  
  1139. Wrapper classes to access XMS, UMBs and the HMA, as well as a templated
  1140. XMS array class. Test suites and timing programs provided for each class.
  1141. Source included. Free. DOS PC/Borland C++ specific. 
  1142.  
  1143.     ftp from oak.oakland.edu
  1144.     in /pub/msdos/cplusplus
  1145.     or garbo.uwasa.fi
  1146.     in /pc/c
  1147. ---------------------------------------------------------
  1148.  
  1149. Useful ftp sites
  1150. ~~~~~~~~~~~~~~~~
  1151. If you don't have ftp access, send email to ftpmail@decwrl.dec.com
  1152. saying "help".  You will get instructions on how to do ftp via email.
  1153.  
  1154. European users might like to try ftpmail@grasp.insa-lyon.fr instead.
  1155. ---------------------------------------------------------
  1156. ftp.th-darmstadt.de
  1157.  
  1158. A major repository of C++ stuff, mostly under the directory tree starting 
  1159. at /pub/programming/languages/C++. Includes a product list (from which
  1160. some of the information in this document was taken) in various formats in 
  1161. sub-directory c++-products.
  1162.  
  1163.     /pub/programming/languages/C++/...
  1164. ---------------------------------------------------------
  1165. ftp.luth.se
  1166.  
  1167.     /pub/languages/c++/ClassLibs/...
  1168. ---------------------------------------------------------
  1169. netlib@research.att.com.
  1170.  
  1171. send mail with the text "send index" or "send index from C++"
  1172. ---------------------------------------------------------
  1173. Simtel
  1174.  
  1175. Note Simtel doesn't have a home at present, but the mirror sites are still
  1176. available, including, for example, oak.oakland.edu.
  1177.  
  1178.     <MSDOS.CPLUSPLUS>
  1179. ---------------------------------------------------------
  1180. Current CUG Library Catalog
  1181.  
  1182. The CUG CD-ROM file listing offers the most comprehensive look at the
  1183. programming tools and utilities available from CUG. The complete
  1184. annotated listing (about 1 megabyte) is available through anonymous ftp
  1185. as follows: 
  1186.  
  1187.     ftp from cdrom.com
  1188.     in /pub/cdrom/cdroms/cug/capsule.txt
  1189. ---------------------------------------------------------
  1190. source-code newsgroups:
  1191.         ftp.uu.net  (e.g. usenet/comp.sources.reviewed archives the
  1192.         comp.sources.reviewed newsgroup).
  1193. ---------------------------------------------------------
  1194. Netlib:
  1195.         research.att.com     email, ftp
  1196.         ornl.gov             email, xnetlib
  1197.         nac.no               email, xnetlib for Europe
  1198.            (e.g. send email to netlib@ornl.gov to access by email)
  1199.         unix.hensa.ac.uk is a mail server useful for Europe.
  1200.         ci.cs.uow.edu.au (130.130.64.3) in Australia
  1201. ---------------------------------------------------------
  1202.  
  1203. Libraries for which I don't know an ftp site
  1204. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1205. ---------------------------------------------------------
  1206. DCE++: A C++ API for Programming Distributed Systems
  1207.  
  1208. William Leddy, Arjun Khanna (arjun@hal.com)
  1209. HaL Computer Systems, Austin, Texas.
  1210.  
  1211. DCE++ is a set of ANSI C++ classes that enable the rapid prototyping of
  1212. distributed programs. The goal of DCE++ is to provide a platform
  1213. independent C++ API to the significant components used in distributed
  1214. computing. Namely: RPC, threads, Security and Naming across the widely
  1215. used distributed computing platforms such as DCE, ONC and WNT. 
  1216.  
  1217. It is expected that by encapsulating platform dependencies inherent in
  1218. setting up rpcs, security etc. in DCE++ base classes, program development
  1219. time can be drastically reduced. Moreover, a foundation can be provided
  1220. for developing *portable* distributed program development tools. 
  1221.  
  1222. The second *evaluation* version of DCE++, version 0.4, has been released
  1223. on Dec 2'93. The release includes C++ bindings for remote procedure calls
  1224. over DCE and ONC. A C++ threads api for programming DCE threads. A C++
  1225. threads api for programming DCE distributed Time Service. The release is
  1226. available free of charge upon signing a very liberal license agreement. 
  1227.  
  1228. The license agreement is obtainable by anonymous ftp from hal.com. It is
  1229. in the directory dce++. The same directory also contains the release
  1230. notes for the 0.4 version and plans for 0.5 features. To obtain the code,
  1231. please send the signed license agreement to: 
  1232.  
  1233. Arjun Khanna, FAX (U.S country code) 512-794-8737
  1234. ---------------------------------------------------------
  1235. GenTools: A Computational Genomic Tool Suite
  1236.  
  1237. The University of Texas System CHPC and collaborators are addressing the
  1238. problems of high performance platforms by developing GenTools, an
  1239. interactive, distributed, loosely integrated, set of tools for DNA and
  1240. protein sequence data analysis, phylogenetic analysis, and restriction
  1241. mapping which combines different algorithm implementations, machines, and
  1242. databases through a "bio-user" friendly set of graphical user interfaces.
  1243.  
  1244.     Sarah Barron
  1245.     GenTools Project Leader
  1246.     Computational Molecular Biology and Genetics Group
  1247.     University of Texas System Center for High Performance Computing
  1248.     Balcones Research Center, CMS 1.154
  1249.     10100 Burnet Road
  1250.     Austin, TX 78758-4497
  1251.  
  1252.     Internet:  sarah@chpc.utexas.edu
  1253.     Bitnet:    s.barron@uthermes
  1254.     Voice:     (512)471-2434
  1255.     FAX:       (512)471-2445
  1256. ---------------------------------------------------------
  1257.  
  1258. Commercial libraries
  1259. ~~~~~~~~~~~~~~~~~~~~
  1260.  
  1261. ---------------------------------------------------------
  1262. Persistence is supposed to give access to a relational database from 
  1263. a C++ object model.
  1264.  
  1265.     Persistence Software Inc
  1266.     1700 Sourth Amphlett Blvd, Suite 250
  1267.     San Mateo, Ca 94402
  1268.     415.341.7733
  1269. ---------------------------------------------------------
  1270. Tools.h++ is the basic Rogue Wave tools library.
  1271.  
  1272. Tools.h++ consists mostly of a large and rich set of concrete classes
  1273. that are usable in isolation and do not depend on other classes for their
  1274. implementation or semantics. 
  1275.  
  1276. Components include Collections, String processing, Time & date handling, File space
  1277. manager, B-Tree disk retrieval, bit vectors, virtual I/O streams, caching
  1278. managers, virtual arrays, etc. 
  1279.  
  1280.     Rogue Wave Software, Inc., 
  1281.     1325 NW 9th Street
  1282.     Corvallis
  1283.     OR, 97330
  1284.     (503) 754-2311.
  1285. ---------------------------------------------------------
  1286. Matrix.h++ includes all the functionality of Math.h++.  For example:
  1287. general matrices, vectors, statistics, complex numbers, Fast Forier
  1288. Transformation (FFT's), etc.  Matrix.h++ adds specialized matrix classes
  1289. such as banded, symmetric, positive-definite, Hermitian, tridiagonal, etc.
  1290. Because Matrix.h++ includes Math.h++, it can take advantage of
  1291. Math.h++'s highly optimized low-level assembly routines, making it fast
  1292. as well as graceful.
  1293.  
  1294. Prices range from $199 to $995
  1295.  
  1296.     Rogue Wave Software, Inc., 
  1297.     1325 NW 9th Street
  1298.     Corvallis
  1299.     OR, 97330
  1300.     (503) 754-2311.
  1301. ---------------------------------------------------------
  1302. Linpack.h++ is the jewel of C++ math classes.  Linpack.h++ includes all
  1303. of Matrix.h++, plus all of the functionality in the original and well-
  1304. established Fortran version; including solutions of systems of equations
  1305. for a variety of matrix types, solutions of over- and under-determined
  1306. systems of equations, incremental least squares solvers, etc.  But,
  1307. Linpack.h++ is a tru object-oriented library, not just a C version that
  1308. compiles under C++:  the traditional messiness of the Fortran version has
  1309. been replaced with high-level, yet efficient, objects that make code far
  1310. easier to write and maintain.
  1311.  
  1312. Prices range from $299 to $1195
  1313.  
  1314.     Rogue Wave Software, Inc., 
  1315.     1325 NW 9th Street
  1316.     Corvallis
  1317.     OR, 97330
  1318.     (503) 754-2311.
  1319. ---------------------------------------------------------
  1320. Classix
  1321.  
  1322. In addition to Rogue Wave, Empathy offers a good general-purpose
  1323. library called Classix.  
  1324.  
  1325.     Empathy
  1326. ---------------------------------------------------------
  1327. USL (UNIX System Laboratories Europe Ltd.)
  1328.  
  1329. USL C++ Standard Components include :
  1330.  
  1331. Args - argc/argv command line parser.
  1332. Bits - bit manipulation to arbitrary-length bitstrings.
  1333. Blocks - dynamic arrays.
  1334. Array - efficient algorithms for searching, sorting, inserting etc.
  1335. Fsm - state machines
  1336. Graphs - maintain arbitrary relationships between arbitrary entities.
  1337. Graph Algorithms - including searching, cycle and component detection.
  1338. ipcstream - inter-process streams.
  1339. Lists - doubly-linked lists.
  1340. Maps - like arrays, except that the subscripts can be non-integral.
  1341. Objections - like UNIX software signals.
  1342. Path - facilities for manipulating UNIX path names and UNIX search paths.
  1343. Pools - optimise memory allocation.
  1344. Regex - regular expressions.
  1345. Sets - including Sets, Bags, and pointer sets.
  1346. Stopwatch - for timing critical sections of code
  1347. Strings - variable-length character strings.
  1348. Strstream - iostreams for Strings.
  1349. Symbol - efficient symbol table handling & sorting.
  1350. Time - Time, Duration (time difference) and Place (geographical location).
  1351.  
  1352. Also included are the following tools :
  1353.  
  1354. c++filt  - demangles C++ names in standard input.
  1355. dem  - demangles C++ names in an argument list.
  1356. demangle  - demangles C++ names in a.out for easier debugging.
  1357. fs  - a tool and library to help find freestore bugs.
  1358. g2++comp  - compiles G2++ record definitions.
  1359. hier  - displays the inheritance hierarchy in a program.
  1360. incl  - displays the hierarchy of include files used in a program.
  1361. publik  - displays the public interface of a class.
  1362.  
  1363.     UNIX System Laboratories, Inc.
  1364.     190 River Rd.
  1365.     Summit
  1366.     N.J, 07901
  1367.     Tel: +1 800-828-UNIX
  1368.          +1 908-522-6000
  1369.  
  1370.     UNIX System Laboratories Europe Ltd.
  1371.     International House
  1372.     Ealing Broadway
  1373.     London W5 5DB
  1374.     England
  1375.     Tel: +11-44-81-567-7711
  1376.  
  1377.     UNIX System Laboratories Pacific Ltd.
  1378.     BR Shiba 1 Bldg. 2-3-18
  1379.     Shiba Minato-ku
  1380.     Tokyo 105
  1381.     Japan
  1382.     Tel: +81-3-5484-8601
  1383. ---------------------------------------------------------
  1384. Booch Components
  1385.  
  1386. Rational markets the C++ Booch objects which are a somewhat bizarre,
  1387. but possibly quite innovative, set of library objects.
  1388.  
  1389. It appears quite complete (unless you have some specific, uncommon
  1390. needs); Booch may have an edge in supporting concurrency. USL may have
  1391. more installations and greater maturity.
  1392.  
  1393.     Rational OO products
  1394.     408-496-3700
  1395. ---------------------------------------------------------
  1396. StarView - A Portable C++ Class Library for Graphical User Interfaces
  1397.  
  1398. StarView is a portable C++ Class Library for Graphical User Interfaces.
  1399. StarView is one of the major parts of our total Object Oriented
  1400. programming environment (we call it SOLAR system). 
  1401.  
  1402. -   portability between the operating systems MS-DOS, OS/2, Macintosh
  1403.     and different UNIX flavours
  1404. -   at  least portable between  the  GUI's MS-WINDOWS, MS-Presentation
  1405.     Manager, MacApp and OSF/Motif
  1406. -   fulfillment of the requirements of the different GUI Style
  1407.     Guide's
  1408. -   data  exchange and direct communication between the applications in
  1409.     homogeneous and heterogeneous networks (groupware approach)
  1410.  
  1411. StarView will support the following GUI's / Compilers:
  1412.  
  1413. Windows 3.x
  1414.         Borland C++
  1415.         Zortech C++
  1416.  
  1417. Presentation Manager
  1418.         Zortech C++
  1419.  
  1420. OSF Motif
  1421.         Sun C++
  1422.         Zortech C++
  1423.         Glockenspiel C++
  1424.  
  1425. Macintosh
  1426.         MPW C++
  1427.  
  1428. Author:     Andreas Meyer, STAR DIVISION
  1429.  
  1430.     STAR DIVISION GmbH
  1431.     Andreas Jahnke
  1432.     Sachsenfeld 4
  1433.     D-20097 Hamburg
  1434.     Germany
  1435.  
  1436.     Phone: ++49 40 23646 500
  1437.     Fax:   ++49 40 23646 550
  1438.     Email: svinfo@stardiv.de
  1439.  
  1440.     Star Division
  1441.     2180 Sand Hill Road, Suite 320
  1442.     Menlo Park, CA 94025
  1443.     (800) 888-8527
  1444.     (415) 233-0142 (fax)
  1445.  
  1446.     svinfo@starlab.uucp
  1447. ---------------------------------------------------------
  1448. Open Dialogue
  1449.  
  1450.     HP/Apollo
  1451. ---------------------------------------------------------
  1452. MacApp (application development toolkit)
  1453.  
  1454.     Apple
  1455. ---------------------------------------------------------
  1456. ICpak101, ICpak201
  1457.  
  1458.     Stepstone
  1459. ---------------------------------------------------------
  1460. NeXTStep (application development toolkit)
  1461.  
  1462.     NeXT
  1463. ---------------------------------------------------------
  1464. CommonView (Iconic user interface)
  1465.  
  1466.     Glockenspiel
  1467. ---------------------------------------------------------
  1468. CommonView Glockenspiel
  1469.  
  1470. This is a C++ UI library. In addition, it comes with container classes.
  1471. The down-side is that some of the features are not supported across all
  1472. platforms. 
  1473.  
  1474.     Computer Associates International
  1475.     One CA Plaza
  1476.     Islandia, NY 11788
  1477.     (516) 342-2308
  1478.     (516) 342-6947 (fax)
  1479. ---------------------------------------------------------
  1480. Galaxy
  1481.  
  1482. This is a C UI library, but it's written in an object-oriented style and
  1483. is type safe for C++ use. The package includes a WYSIWYG GUI builder. 
  1484.  
  1485. The tools are, reportedly, pretty full-featured. User-interface items
  1486. have extensive abstraction (for example, they have a confirmation-type
  1487. dialog that resolves to a push-pin and 'apply' button under openlook, but
  1488. 'ok', 'apply', 'cancel' buttons under motif). Objects can be positioned
  1489. relative to each other (rather than merely absolute position on the
  1490. screen). Also, errors are handled with an abstract exception handling
  1491. framework. They support internationalization of fonts (at least Japanese),
  1492. money, and data formatting. 
  1493.  
  1494. Some extra-cool features include memory leak detection and C-language
  1495. objects for text (multi-styled, multi-font text with embedded graphics),
  1496. list (spreadsheet-like for handling up to 2^31 x 2^31 cells with
  1497. customizable displays), and graphics processing. 
  1498.  
  1499.     Visix
  1500.     11440 Commerce Park Drive
  1501.     Reston, Virginia 22091
  1502.     (800) 832-8668
  1503.     (703) 758-2711
  1504.     galaxy@visix.com
  1505. ---------------------------------------------------------
  1506. Guild
  1507.  
  1508. This is a C-language UI library, but they're type-safe for C++
  1509. compatibility. The package includes a GUI builder and an event occurrence
  1510. monitor. 
  1511.  
  1512. Additional features in the library includes support for international
  1513. character sets, portable file system support and nifty C-language classes
  1514. for pie-charts, 3d bars, x-y plots, and the like. 
  1515.  
  1516. OPTIONS:
  1517.     Graphic Modeling        $995
  1518.     Oracle Database Bridge  $395
  1519.     ODBC Database Access    $495
  1520.  
  1521.     Guild
  1522.     1710 S. Amphlett
  1523.     2nd Fl.
  1524.     San Mateo, California 94402
  1525.     (415) 513-6650
  1526.     (415) 349-4908 (fax)
  1527. ---------------------------------------------------------
  1528. MainWin
  1529.  
  1530.     Machine Independent Software
  1531. ---------------------------------------------------------
  1532. ObjectViews
  1533.  
  1534. I believe this is a commercial version of InterViews.
  1535.  
  1536.     Quest Windows
  1537. ---------------------------------------------------------
  1538. Open Interface Version 3.0
  1539.  
  1540. This is a C-based UI library, but type-safe for C++ compatibility. The
  1541. software also comes with a WYSIWYG GUI builder. 
  1542.  
  1543. They include tons of extra widgets like business graphics (bar, pie, and
  1544. line charts), images (all standard formats), and hypertext help. 
  1545.  
  1546. Other software in Open Interface includes international character support,
  1547. multi-font support, full printer support, memory management, file I/O
  1548. support as well as Windows DDE support (the latter is, of course, non-
  1549. portable). 
  1550.  
  1551. They also have a product called Nexpertobject, which is an expert systems
  1552. tool intended for GUI development. 
  1553.  
  1554.     Neuron Data
  1555.     156 University Avenue,
  1556.     Palo Alto, California 94301
  1557.     (800) 876-4900
  1558.     (415) 321-4488
  1559. ---------------------------------------------------------
  1560. Wind/U
  1561.  
  1562.     Bristol Software
  1563. ---------------------------------------------------------
  1564. WNDX
  1565.  
  1566.     WNDX
  1567.     1550 8th Street S.W. Suite 305
  1568.     Calgary, Alberta Canada T2R 1K1
  1569.     (403) 244-0995
  1570. ---------------------------------------------------------
  1571. XVT Portability Toolkit
  1572.  
  1573. This is a C-language library of functions (although, you can pay extra
  1574. for C++). They have a WYSIWYG GUI builder, but they charge for that, too.
  1575.  
  1576.  
  1577. OPTIONS:
  1578.     C++ capability                      $200
  1579.     XVT-Design (a WYSIWYG GUI builder)  $1200 ($2900 for non-PC UNIX)
  1580.     Source Code                         (call)
  1581.  
  1582.     XVT Software Incorporated
  1583.     4900 Pearl East Circle
  1584.     Box 18750
  1585.     Boulder, CO 80308
  1586.     (800) 678-7988
  1587.     (303) 443-4223 (phone)
  1588.     (303) 443-0969 (fax)
  1589.  
  1590.     info@xvt.com
  1591. ---------------------------------------------------------
  1592. zApp V2.0
  1593.  
  1594. This is a full C++ class library.
  1595.  
  1596. This product contains 200 classes to provide things like DDE support (non-
  1597. portable), printer support, logical positioning (top, bottom, etc) of
  1598. window items, and true-type font support. Included in their package is 75
  1599. pre-defined forms (as well as the usual examples). 
  1600.  
  1601. The software comes with zApp Programmer's Guide (330 pages) and zApp
  1602. Programmer's Reference (890 pages). 
  1603.  
  1604. OPTIONS:
  1605.     Object/Designer $499 (is this a GUI builder?)
  1606.  
  1607.     Inmark
  1608.     2065 Landings Drive,
  1609.     Mountainview, CA 94043
  1610.     (800) 3-inmark
  1611.     (415) 691-9000
  1612.     (415) 691-9099 (fax)
  1613.  
  1614.     sales@inmark.com
  1615. ---------------------------------------------------------
  1616. Zinc V3.5
  1617.  
  1618. This is a full C++ class library that comes with the Zinc Designer (a
  1619. WYSIWYG GUI builder). Their classes include some graphic capabilities, a
  1620. rather nice error system, and a portable, if rudimentary, help system.
  1621. Also included is the source for the library (and for the Designer!). 
  1622.  
  1623. In addition to the usual GUI stuff, Zinc also provides international
  1624. character support (an extended version, for extra bux, is in the works),
  1625. some container classes, and filesystem portability. They also allow you
  1626. to incorporate platform-specific stuff (e.g., system messages) into their
  1627. API; but, of course, you're on your own when it comes to porting any
  1628. additions. 
  1629.  
  1630.  
  1631.     ZINC Software Incorporated
  1632.     405 South 100 East 2nd Floor
  1633.     Pleasant Grove, UT 84062
  1634.     (800) 638 8665
  1635.     (801) 785-8900
  1636.     (801) 785-8996 (fax)
  1637.     (801) 785-8997 (bbs)
  1638.  
  1639.     tech@zinc.com
  1640. ---------------------------------------------------------
  1641. Software Transformation has a cross-platform product which was designed
  1642. from the ground up for commercial ISVs, not just MIS shops, and the
  1643. technology is supposed to blow away XVT. 
  1644.  
  1645.     Software Transformation
  1646. ---------------------------------------------------------
  1647. OpenUI is another GUI builder
  1648.  
  1649. This interface supports C, Pascal, and (ish) COBOL.
  1650.  
  1651.     Open Software Associates
  1652.     P.O. Box 3599
  1653.     Sunnyvale, CA 94088-3599
  1654.     (408) 730-2626
  1655. ---------------------------------------------------------
  1656. NetClasses++, C++ classes for message passing environments:
  1657.  
  1658. NetClasses is a set of C++ class libraries that is organized as an object-
  1659. oriented software toolkit for distributed, message-passing based
  1660. programming. 
  1661.  
  1662. Facilities include :
  1663.  
  1664. Transporting objects over a network. NetClasses can transport: Arbitrary
  1665. C++ objects derived from PostModern's TransObject class, arbitrary NIH-
  1666. derived objects, and NetClasses Typed Objects. 
  1667.  
  1668. NetClasses Typed Objects provide an object-oriented data transport in
  1669. which the structure and organization of objects is specified externally
  1670. in configurable files using a simple, programming language independent
  1671. abstract syntax notation, the NetClasses Abstract Syntax Notation (NASN).
  1672.  
  1673. Remote method invocations (RMI). Using RMI, an application on machine B
  1674. can invoke a method on machine A. RMI makes fault tolerance and
  1675. connection management transparent to the application programmer. The RMI
  1676. layer is built on top of the distributed services package that is
  1677. described below. 
  1678.  
  1679. Reading and writeing all three varieties of NetClasses-transportable
  1680. objects on streams using machine-independent external representations. 
  1681.  
  1682. Currently available on Sun SPARC; currently testing on HP workstations.
  1683.  
  1684. NetClasses Development License          $1995
  1685. NetClasses Runtime License               $495
  1686. NetClasses Source Code License          $7995
  1687. (includes 3 runtime licenses)
  1688. NetClasses training class               $2000
  1689. NetClasses consulting and porting services (ask for quote)
  1690.  
  1691.     Qualix Group
  1692.     1900 S. Norfolk St. Suite 224
  1693.     San Mateo, CA 94403
  1694.     info@qualix.com
  1695.     1-800-245-UNIX (voice)
  1696.     (415) 572-1300 (fax)
  1697.     (415) 572-0200 (voice)
  1698. ---------------------------------------------------------
  1699. Aspect
  1700.  
  1701. This is a C library, though they're type safe for C++ compatibility. A
  1702. GUI builder is provided with the library. They're coming out with a C++
  1703. class library soon. 
  1704.  
  1705.     OPEN Inc.
  1706.     655 Southpointe Court, Suite 200
  1707.     Colorado Springs, CO 80906
  1708.     (719)527-9700 (sales, customer service, tech support)
  1709.     (719)576-3835 (fax)
  1710. ---------------------------------------------------------
  1711. C++/Views
  1712.  
  1713. This is a C++ library based on the smalltalk model (all classes come from
  1714. one superclass, and they have a smalltalk-like class browser). They do
  1715. not have a WYSIWYG GUI builder. 
  1716.  
  1717. Additional features include various container classes.
  1718.  
  1719.     Liant Software Corp.
  1720.     959 Concord St.,
  1721.     Framingham, MA 01701 USA
  1722.     (800) 237-1873
  1723.     (508) 875-2246.
  1724.     support@lpi.liant.com
  1725. ---------------------------------------------------------
  1726. Presentation Services Manager UI library
  1727.  
  1728. No WYSIWYG GUI builder exists, but they do include a script language. 
  1729.  
  1730.     Lancorp Pty Ltd
  1731.     33 Nott St
  1732.     Port Melbourne 3207
  1733.     Australia
  1734.     +61 3 646 7100 (phone)
  1735.     +61 3 646 8610 (fax)
  1736. ---------------------------------------------------------
  1737. ILOG RULES is a high performance embeddable rule-based inference
  1738. engine. It is a forward chaining tool, written in C++ (hence it is
  1739. object-oriented and supports inheritance mechanisms) and is also
  1740. provided as a C++ library. 
  1741.  
  1742. It runs virtually on any Unix platform (e.g., HP97X0, Sun4, RS/6000,
  1743. DecStations) as well as on PCs running DOS (with or without MS/Windows)
  1744. or OS/2. 
  1745.  
  1746. It extends OPS/5 with nested premises (objects as values), rule packets
  1747. (logical grouping of rules), a full Truth Maintenance System (TMS) for
  1748. efficient non-monotonic reasoning, compilation of rules into C/C++ code,
  1749. and an object oriented data-model in C++. ILOG RULES work directly on
  1750. user objects, so interfacing is straightforward. C/C++ code may be
  1751. included in rule conditions and actions. ILOG RULES is based on the fast
  1752. XRETE implementation of the RETE algorithm developed by Thomson-CSF. 
  1753.  
  1754.     ILOG, Inc., 
  1755.     2073 Landings Drive, 
  1756.     Mountain View, 
  1757.     CA 94043, 
  1758.     tel 415-390-9000, 
  1759.     fax 415-390-0946, 
  1760.     e-mail info@ilog.com.  
  1761.  
  1762. European customers should contact 
  1763.     ILOG SA, 
  1764.     2, av. Gallieni, 
  1765.     BP 85, 
  1766.     94253 Gentilly CEDEX, 
  1767.     France, 
  1768.     tel +33 (1) 46-63-66-66, 
  1769.     fax +33 (1) 46-63-15-82, 
  1770.     e-mail info@ilog.fr.
  1771. ---------------------------------------------------------
  1772. ImageSoft's Object/Engineering C++ class library supports simulation.
  1773.  
  1774. The library provides a natural approach to solving discrete-event
  1775. simulation problems. Modularity is reinforced by implementing the
  1776. process objects as concurrent tasks. Support is provided for dynamic
  1777. systems; transaction operators; transaction messages; as well as
  1778. queuing network thread with polymorphic scheduler (timer for
  1779. discrete-event simulation; tracer for simulation run; processes
  1780. in discrete-event simulation with services delay;
  1781. conventional/unconditional blocking, pre-emption, etc.;
  1782. shared queues/links in network with LIFO, FIFO & arbitrary
  1783. queuing discipline; producing node and source; consuming node
  1784. and sink; generic queuing network nodes and servers.
  1785.  
  1786. And full source code is provided together with extensive
  1787. documentation, examples and tutorial. There are also an
  1788. enourmous number of other class libraries included with
  1789. source that are of interest to the scientific and engineering community.
  1790.  
  1791.     ImageSoft Inc.
  1792.     2 Haven Avenue
  1793.     Port Washington, NY 11050
  1794.     (516) 767-2233
  1795.     (516) 767-9067 (Fax)
  1796.     (516) 767-9074 (BBS)
  1797.     email: mcdhup!image!object
  1798. ---------------------------------------------------------
  1799. POET : Object Oriented Database
  1800.  
  1801. POET runs on the SPARC, NeXT, DOS, MS-Windows, Novell, OS/2, and
  1802. Macintosh. Other ports are in the works. Pricing starts at about $500. 00
  1803. for the DOS version, to a little over $1000.00 for the Unix versions. 
  1804.  
  1805.     BKS Software
  1806.     One Kendall Square
  1807.     Suite 2200
  1808.     Cambridge, MA 02139
  1809.     Phone: 617 / 621 7047
  1810.     Fax:   617 / 621 7097
  1811.  
  1812. In Germany : BKS Software
  1813.              Guerickestr. 27 
  1814.              1000 Berlin 10
  1815.              Germany
  1816.              Phone: +49 30 / 342 3066
  1817.              Fax:   +49 30 / 342 8413
  1818.  
  1819.     BKS Software
  1820.     4633 Old Ironsides Drive
  1821.     Suite 110
  1822.     Santa Clara, CA 95054
  1823.     Tel:    408 / 748 - 3403
  1824.     Fax:    408 / 748 - 9060
  1825.  
  1826. European Office:
  1827.     BKS Software
  1828.     Fo_redder 12
  1829.     2000 Hamburg 67
  1830.     Germany
  1831.     Tel:    +49 40 / 60 99 011
  1832.     Fax:    +49 40 / 60 39 851
  1833.     Internet: poet@bks.de
  1834.  
  1835. UK Office:
  1836.     Silicon River, Ltd.
  1837.     106-108 Powis Street
  1838.     London, SE18 6LU
  1839.     England
  1840.     Tel:    +44 81 / 317 7777
  1841.     Fax:    +44 81 / 316 7778
  1842.     BBS:    +44 81 / 317 2310
  1843.     Internet:  acourt@cix.compulink.co.uk
  1844. ---------------------------------------------------------
  1845. ORION/ITASCA - Object Oriented Database
  1846.  
  1847.     Itasca Systems, Inc.  
  1848.     2850 Metro Drive
  1849.     Suite 300
  1850.     Minneapolis, MN  55425
  1851.     Tel: 612-851-3158
  1852.     Fax: 612 851 3157
  1853.  
  1854. A slightly different address from another poster ...
  1855.  
  1856.     Itasca Systems, Inc.
  1857.     7850 Metro Parkway
  1858.     Minneapolis, Minn 55425 
  1859.     Tel: (612) 851-3155
  1860.     Technical Contact : Doug Barry (doug@itasc.com)
  1861. ---------------------------------------------------------
  1862. OS Object Oriented Database
  1863.  
  1864.     O2 technology
  1865.     Suite 2200
  1866.     1 Kendall Square
  1867.     Cambridge MA 02139
  1868.     U.S.A.
  1869.     Tel: +1 617 621 7041
  1870.     Fax: +1 617 577 1209
  1871.  
  1872. France : 
  1873.     O2 Technology
  1874.     7, Rue du Parc de Clagny
  1875.     78035 Versailles Cedex
  1876.     France
  1877.     Tel: +33 1 30 84 77 91
  1878.     Fax: +33 1 30 84 77 90
  1879.     Email: o2@o2tech.fr
  1880.     Contact: Didier Plateau
  1881.     Email: didier@o2tech.fr
  1882. ---------------------------------------------------------
  1883. G-BASE/GTX (MATISSE) Object Oriented Database
  1884.  
  1885.     ODB, an Intellitic Intl Co.
  1886.     238 Broadway
  1887.     Cambridge, MA 02139
  1888.     phone:     (617) 354-4220
  1889.     fax:    (617) 547-5420
  1890.     e-mail: info@odb.com
  1891.     Contact: Christina Bernard, Marketing and Communications
  1892. ---------------------------------------------------------
  1893. OBJECTSTORE Object Oriented Database
  1894.  
  1895. email address for their distributor in France: bchavonnet@elsa.fr
  1896.  
  1897.     Object Design
  1898.     Main office              California address
  1899.     One New England Executive Park     101 El Camino Real, Suite 300
  1900.     Burlington, MA  01803         Menlo Park, CA 94025
  1901.     Tel: 617-270-9797              (415) 327 - 5191
  1902.     Fax: 617-270-3509
  1903.  
  1904. UK Office:
  1905.     Object Design (UK) Ltd.
  1906.     604 Delta Business Park
  1907.     Welton Road
  1908.     Swindon
  1909.     Wiltshire SN5 7XP
  1910.     44-793-486111
  1911.     44-793-491177 (fax)
  1912. ---------------------------------------------------------
  1913. Objectivity/DB Object Oriented Database
  1914.  
  1915. Objectivity/DB runs on the SPARC, as well as all sun platforms, all dec
  1916. platorms (and operating systems), hp 9000 series (68k and risc), ibm risc,
  1917. sgi, and some others, all in a mixed fully distributed and heterogeneous
  1918. environment.
  1919.  
  1920. Objectivity Inc.
  1921.     West coast                      East coast
  1922.     800 El Camino Real        67 South Bedford Street
  1923.     Fourth Floor            Suite 400W
  1924.     Menlo Park, CA  94025        Burlington, MA 01803
  1925.     Tel: 415-688-8000        Tel: 617 229 5817
  1926.     Fax: 415-325-0939        Fax: 617 272 0558
  1927.  
  1928.     11050 Strathmore Dr., #316/300B
  1929.     Los Angeles, CA  90024
  1930.     (310) 208-6117
  1931.     (310) 208-5677 fax
  1932.  
  1933.     email: info@objy.com
  1934.     European General Manager : Remy Malan (remy@objy.com)
  1935.  
  1936. For Germany:
  1937.     Dr. Matthias Frei
  1938.     Micram Microelectronic GmbH & Co. KG
  1939.     Universitatsstrabe 142
  1940.     4630  Bochum
  1941.     Germany
  1942.     ph:    +49  234  97 08-304
  1943.     fax:    +49  234  97 08-301
  1944.     e-mail:    frei@micram.de
  1945.  
  1946. For Sweden, Norway, Finland and Denmark:
  1947.     Mr. Kjell Hegerin
  1948.     Norsys Technology AB
  1949.     Finlandsgatan 12
  1950.     Box 1239
  1951.     S-164 28 Kista
  1952.     Sweden
  1953.     phone:    +46 8 750 75 75
  1954.     fax:    +46 8 703 92 72
  1955.  
  1956. For The United Kingdom:
  1957.  
  1958.     Valbecc Object Technology Ltd.
  1959.     115 Wilmslow Road
  1960.     Handforth, Wilmslow
  1961.     Cheshire  SK9 3ER
  1962.     United Kingdom
  1963.     contact:    Fred Peel
  1964.     ph:    +44  625  539903
  1965.     fax:    +44  625  539905
  1966. ---------------------------------------------------------
  1967. ONTOS Object Oriented Database
  1968.  
  1969.     Ontologic, Inc.
  1970.     Three Burlington Woods
  1971.     Burlington, MA  01803
  1972.     Tel: 617-272-7110
  1973.     Fax: 617-272-8101 
  1974.  
  1975. UK distributor:
  1976.     VALBECC SOFTWARE
  1977.     Mr. Fred Peel
  1978.     115 Wilmslow Road
  1979.     Handforth,
  1980.     Wilmslow, SK9 3ER 
  1981.     U.K.
  1982.     tel +44 625 539 903
  1983.     fax +44 625 539 905
  1984. ---------------------------------------------------------
  1985. KALA Object Oriented Database
  1986.  
  1987. Kala(tm) is a Persistent Data Server managing distributed, shared,
  1988. arbitrarily complex and evolving persistent data. Kala is highly
  1989. efficient and secure. Kala manages the visibility of persistent data
  1990. elements to its clients, thus supporting any types of transactions,
  1991. versions, access control, security, configurations. Kala does not
  1992. restrict you to any particular model. Kala provides the mechanism, but
  1993. imposes no policy.
  1994.  
  1995. o Kala is available now on Sun platforms (SunOS / 68K & SPARC). A
  1996.   80x86/DOS version is now available to alpha and early beta sites.
  1997.   Ports to Windows and MacOS are also likely in the near future. Any
  1998.   port is possible as NRE.
  1999. o Kala's interface is ANSI C, also callable from C++.
  2000.  
  2001.     Penobscot Development Corporation
  2002.     50 Princeton Road
  2003.     Arlington, MA 02174-8253
  2004.     USA
  2005.     Tel: +1-617-646-7935
  2006.     Fax: +1-617-646-5753
  2007.     Contact: Sergiu S. Simmel
  2008.     Email: sss@world.std.com 
  2009.     Information: kala-request@world.std.com
  2010. ---------------------------------------------------------
  2011. IDB Object Databases
  2012.  
  2013.     Persistent Data Systems
  2014.     P.O. box 38415
  2015.     Pittsburgh, PA 15238-9929
  2016.     Tel: 412-963-1846
  2017.     Fax: 412-963-1843
  2018. ---------------------------------------------------------
  2019. GEMSTONE Object Oriented Database
  2020.  
  2021. Briefly, GemStone is a full featured OODBMS with transaction control,
  2022. multiple users, multiple platforms supported, client server architecture,
  2023. active objects (ie, behavior can occur in the database as well as in the 
  2024. application using it), multiple language support, etc.
  2025.  
  2026. GemStone is actually quite a bit more than just a data repository - it is a
  2027. full-fledged DBMS that is pure OO. You can access the same database just as
  2028. easily from C, C++, or SmallTalk, or you can build entire database
  2029. applications inside the database server, because it is an active server
  2030. that runs methods written in our DML, OPAL, which is a dialect of
  2031. SmallTalk. There are also high-level tools to aid application building.
  2032.  
  2033.     Servio Corporation
  2034.     950 Marina Village Parkway
  2035.     Suite 110
  2036.     Alameda CA 94501
  2037.     Tel: 510-814-6200
  2038.     Tel: 800-243-9369
  2039.     Fax: 510-814-6227
  2040.     Contact : marcs@slc.com
  2041.  
  2042. UK Office:
  2043.     Servio-UK Ltd
  2044.     Criterion House
  2045.     Beauchamp Court
  2046.     Victors Way
  2047.     Barnet
  2048.     EN5 5TZ
  2049.     England
  2050.     Tel: (81) 447-0800
  2051. ---------------------------------------------------------
  2052. VERSANT Object Oriented Database
  2053.  
  2054. Versant markets a full-function OODBMS together with associated DBA and
  2055. application developer tools. Versant is currently available on Sun-3, Sun-4, 
  2056. IBM RS/6000, HP 9000/400,700, DEC Ultrix, SGI, NCR, NeXT and Sequent platforms. 
  2057. An OS/2 port has just been released. Other platforms will be announced soon.
  2058. A Windows/NT port is in progress.
  2059.  
  2060. Interfaces to 'C', 'C++' and Smalltalk-80 are supported.
  2061.  
  2062.     Versant Object Technology
  2063.     4500 Bohannon Drive
  2064.     Suite 200
  2065.     Menlo Park, CA  94025
  2066.     Attn: Mike Mooney
  2067.     Tel: 1-800-VERSANT
  2068.     Tel: (415) 329-7500
  2069.     Fax: (415) 325-2380
  2070.     Tel: 415-325-2300
  2071.     Fax: 415-325-2380
  2072.     Contact: Mary Foussourier
  2073.     Email:info@versant.com, 
  2074.     Email:info@osc.com
  2075.     Email:aflynn@osc.com
  2076.  
  2077. European Office:
  2078.     Versant Europe
  2079.     Siriusdreet 2
  2080.     P.O. Box 333
  2081.     2130 All Hoofddrop
  2082.     The Netherlands
  2083.     Tel: (31) 2503-66373
  2084.     Tel: +31 - (0)2503 - 66851
  2085.     Fax: +31 - (0)2503 - 66855
  2086.  
  2087. UK Distributor:
  2088.     Admiral Software Ltd
  2089.     Admiral House
  2090.     193-199 London Road
  2091.     CAMBERLEY
  2092.     Surrey GU15 3JT.
  2093.     Tel: 0276 692269
  2094.     Contact: Kevin Adams
  2095.     Contact: Clive Harris
  2096. ---------------------------------------------------------
  2097. M++
  2098.  
  2099. M++ isn't as well known as the RogueWave math.h++ libraries, but it has
  2100. been around longer. It has a number of features that distinguish it from
  2101. the RogueWave classes, notably improved handling of temporaries. 
  2102.  
  2103. M++ was explicitly designed to provide the functionality of an array
  2104. language like Matlab or Gauss and it contains the Linpack, Eispack stuff
  2105. found in RogueWave's Linpack.h++. 
  2106.  
  2107. Dyad Software, also sell modules written in M++ for doing statistical
  2108. work, including linear and nonlinear least squares estimation, as well as
  2109. optimization, numerical integration, and differential equations. 
  2110.  
  2111.     Dyad Software
  2112.     6947 Coal Creek Pkwy, Suite 361
  2113.     Renton, WA 98059-3159
  2114.     206-637-9426 (voice)
  2115.     206-637-9428 (fax)
  2116.     206-271-9486 (bbs)
  2117. ---------------------------------------------------------
  2118. Financial and other class libraries
  2119.  
  2120. I have no product details at present)
  2121.  
  2122.     Greenleaf Software, Inc.
  2123.     16479 Dallas Parkway, Suite 570
  2124.     Dallas, 
  2125.     Texas 75248
  2126. ---------------------------------------------------------
  2127.  
  2128.  
  2129. Other Commercial sources of C++ code
  2130. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2131. ---------------------------------------------------------
  2132. The USL UNIX Toolchest is an electronic catalog for browsing and ordering
  2133. source software. This catalog provides unsupported software products,
  2134. developed within AT&T, for the commercial UNIX world. As you browse
  2135. through the online catalog, you'll find descriptions of all the tools,
  2136. complete with information on memory and disk requirements, documentation,
  2137. and license fees. 
  2138.  
  2139. United States and Canada, may access the Toolchest by dialing 1-908-522-
  2140. 9600(e-7-1) and logging in as "guest". 
  2141. ---------------------------------------------------------
  2142. Checkout the ISCL CD ROM from ImageSoft, it contains the largest
  2143. collection of C++ source code ever compiled in one place. It's available
  2144. from ImageSoft ... 
  2145.  
  2146.     ImageSoft Inc.
  2147.     2 Haven Avenue
  2148.     Port Washington, NY 11050
  2149.     (516) 767-2233
  2150.     (516) 767-9067 (fax)
  2151.     (516) 767-9074 (bbs)
  2152.     email: mcdhup!image!iscl
  2153. ---------------------------------------------------------
  2154. This is not a code CD but it has many libraries & some code (all msdos)
  2155. brought together into a CD. 
  2156.  
  2157.     EMS Professional Software, Specialized Software Libraries
  2158.     Baker Enterprises
  2159.     20 Ferro Drive
  2160.     Sewell, NJ 08080
  2161.     Fax: 609-582-9204
  2162.     Internet: rbakerpc@aol.com
  2163. ---------------------------------------------------------
  2164.  
  2165. Other places to look for details of C++ libraries
  2166. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2167. The index of resources for numerical computation in C or C++.
  2168. ftp from usc.edu in pub/C-numanal/numcomp-free-c.gz
  2169. ---------------------------------------------------------
  2170. comp.object FAQ
  2171. ---------------------------------------------------------
  2172. comp.windows.misc portable-GUI-software FAQ
  2173. ---------------------------------------------------------
  2174. ftp.th-darmstadt.de /pub/programming/languages/C++/c++-products/*
  2175. ---------------------------------------------------------
  2176. ASSET is currently populating a national directory of reusable
  2177. software assets, the National Software Reuse Directory (NSRD).  The
  2178. concept is to provide a type of 'card catalogue' containing descriptions
  2179. of reusable software work products and services.
  2180.  
  2181. For more information on supplying listings for the NSRD, please
  2182. contact or send information to:
  2183.  
  2184.     National Software Reuse Directory
  2185.     c/o ASSET
  2186.     2611 Cranberry Square
  2187.     Morgantown, WV 26505
  2188.     email: nsrd@source.asset.com
  2189.     voice: (304) 594-9827
  2190.  
  2191. For more information on obtaining an ASSET account and accessing the
  2192. NSRD, please contact:
  2193.  
  2194.     ASSET Account Manager
  2195.     2611 Cranberry Square
  2196.     Morgantown, WV 26505
  2197.     email: info@source.asset.com
  2198.     voice: (304) 594-1762
  2199. ---------------------------------------------------------
  2200.  
  2201. -- 
  2202. Nikki Locke,Trumphurst Ltd.(PC & Unix consultancy) cpplibs@trmphrst.demon.co.uk
  2203. trmphrst.demon.co.uk is NOT affiliated with ANY other sites at demon.co.uk.
  2204.